home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / FireMan.swf / scripts / frame_1179 / PlaceObject2_91_65 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-12  |  510b  |  23 lines

  1. onClipEvent(enterFrame){
  2.    _X = _X - heroe.scrollspeed;
  3.    if(this.hitTest(_root.shoot1) && !us)
  4.    {
  5.       _root.shoot1.impact = true;
  6.       us = true;
  7.       _root.escudo.start();
  8.       shieldtimer = 3;
  9.       _root.frebote._x = _root.shoot1._x;
  10.       _root.frebote._y = _root.shoot1._y;
  11.       _root.frebote.gotoAndPlay(2);
  12.    }
  13.    if(shieldtimer > 0)
  14.    {
  15.       shieldtimer--;
  16.       if(shieldtimer <= 0)
  17.       {
  18.          us = false;
  19.          _root.shoot1.impact = false;
  20.       }
  21.    }
  22. }
  23.